Skip to main content

Handle Withdrawals JSON

POST 

/api/operator/WithdrawApprovalJson

An API call will be sent to an operator’s notification callback URL alerting them of pending withdrawals. After receiving this notification an operator will need to approve or reject the requested withdrawal.

This method is used to make an authenticated request to approve a specific withdrawal received via notification callback.

Example Scenario:

  1. End user makes a withdrawal on the VIP Connect web component.
  2. VIP Connect notifies the operator using the notification endpoint URL configured.
  3. Operator reviews the received withdrawal request.
  4. Operator calls withdrawal approval endpoint on VIP Connect.
  5. Operator receives successful response status.
info

No action needed to reject a withdrawal request. Operator can review and ignore the withdrawal notification received.

Request

Responses

API received the request and responded

Example Response

  {
"transactionId":"9f80db7112",
"amount":"10.33",
"transactionType":"withdraw",
"timestamp":"2022-10-03T14:23:09.2188558+00:00",
"transactionResult":"Success"
}